home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Demos / OOFILE / PhoneControl OOFILE sample / CPeriodicImport.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-09  |  374 b   |  17 lines  |  [TEXT/CWIE]

  1. #include <LPeriodical.h>
  2.  
  3. class CPhoneControlDoc;
  4.  
  5. class CPeriodicImport : public LPeriodical {
  6. public:
  7.     CPeriodicImport(CPhoneControlDoc* inImporter, unsigned long inStartAt, unsigned long inRepeatInSecs);
  8.     virtual ~CPeriodicImport() {};
  9.     
  10.     virtual    void    SpendTime(const EventRecord&);    
  11.  
  12. private:
  13.     CPhoneControlDoc* mImporter;
  14.     unsigned long    mNextImport, mRepeatInSecs;
  15. };
  16.  
  17.